home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / mus / play / MP132src.lha / include / misc.h < prev    next >
C/C++ Source or Header  |  1991-11-07  |  460b  |  18 lines

  1. /* Misc.h - Header file for miscellaneous modules - © 1991 Bryan Ford */
  2. #ifndef BRY_MISC_H
  3. #define BRY_MISC_H
  4.  
  5. /* String functions */
  6. char * __regargs StripBlanks(char *str);
  7. int Stricmp(char *a,char *b);
  8.  
  9. /* Case conversion */
  10. char __regargs ToUpper(char c);
  11. long __regargs ToUpperLong(long c4);
  12.  
  13. /* SPrintF.asm */
  14. void __stdargs SPrintF(char *outbuf,char *formatstring,...);
  15. void __stdargs VSPrintF(char *outbuf,char *formatstring,long *arguments);
  16.  
  17. #endif
  18.